导航菜单
首页 >  pyecharts图形在jupyter notebook中不显示的解决办法  > pyecharts图形在jupyter notebook中不显示的解决办法

pyecharts图形在jupyter notebook中不显示的解决办法

问题原因

未挂载静态资源文件 pyecharts-assets 项目

解决方法参考官网:https://pyecharts.org/#/zh-cn/assets_host?id=notebook-serverhttps://pyecharts.org/#/zh-cn/notebook?id=jupyter-notebook

解决方法

推荐使用方法二,不行的话,再看方法一

方法一:

pyecharts v1.5.1+ 起开始支持 Notebook 插件作为静态资源服务。 如果版本不够,建议重新安装pyecharts,官网安装方法

pip install pyecharts

1、获取 pyecharts-assets 项目

git clone https://github.com/pyecharts/pyecharts-assets.git

2、安装扩展插件

cd pyecharts-assets# 安装并激活插件jupyter nbextension install assetsjupyter nbextension enable assets/main

3、配置 pyecharts 全局 HOST

# 只需要在顶部

相关推荐: